home *** CD-ROM | disk | FTP | other *** search
- /* stdarg.h standard header */
- #ifndef _STDARG
- #define _STDARG
- #ifndef _YVALS
- #include <yvals.h>
- #endif
-
- #if __MWERKS__
- #pragma options align=mac68k
- #endif
-
- /* type definitions */
- typedef _Va_list va_list;
- /* macros */
- #define va_start(ap, A) _Va_start(ap, A)
- #define va_arg(ap, T) _Va_arg(ap, T)
- #define va_end(ap) (void)0
-
- #if __MWERKS__
- #pragma options align=reset
- #endif
-
- #endif
-
- /*
- * Copyright (c) 1994 by P.J. Plauger. ALL RIGHTS RESERVED.
- * Consult your license regarding permissions and restrictions.
- */
-
-